4
תגובות
היי שלום,

בשורה 17 בקוד יש פקודה
document.write("str:=" + str + " " + "<br />");

- אני מנסה להדפיס לאותו מסך הנוכחי את האות שהקישו בשדה חיפוש,
- אומנם האות מודפסת אבל במסך חדש.

איך מדפיסים לאותו מסך נוכחי?
תודה!

הקוד:
*******************
<html>
<head>
<title>Simple Ajax Example</title>
<meta content="text/html; charset=windows-1255" http-equiv="Content-Type">
<link rel="stylesheet" rev="stylesheet" href="script.css" />
<script language="Javascript">
   <!-- //
   var str;
   
   function setWord() {
    alert("There was a setWordt ");
   }
   function doSomething() {
    document.getElementById("word").value = mycars[0][0];
    str = document.getElementById("word").value;
      document.getElementById("word").className = "";  
        document.write("str:=" + str + " " + "<br />");
  }
 
  var i;
    var mycars = new Array();
    mycars[0] = "Saab";
    mycars[1] = "Volvo";
    mycars[2] = "BMW";

    for (i=0;i<mycars.length;i++)
    {
    document.write(mycars[i] + " " + mycars[i][0] + " " + "length:= " + mycars[i].length + "<br />");
    }
   
   
</script>
</head>
<body>
<p>
Now after getting
<code>n</code>
text I need to check
</p>
<form action="#">
    <h3>Please enter your word:</h3><br />
    <input type="text" id="word" autocomplete="off" onkeyup="doSomething();" /><br /><br />
   
  </form>
  <table align="center" border="1">
<tbody>
<tr>
<td id="otKeyש" class="ot_word" bgcolor="#e2e2e2">ש</td>
<td id="otKeyד" class="ot_word" bgcolor="#e2e2e2">ד</td>
<td id="otKeyג" class="ot_word" bgcolor="#e2e2e2">ג</td>
</tr>
</tbody>
</table>
</body>
</html>


4 תשובות

avatar ענה משתמש_91496 ב 24 לינואר 2012 #

avatar ענה intval ב 24 לינואר 2012 #

document.getElementById('xxx').innerHTML += 'test';

avatar ענה משתמש_91496 ב 24 לינואר 2012 #

תודה

avatar ענה משתמש_91496 ב 25 לינואר 2012 #

תודה ושוב פעם תודה!